Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all dependencies #526

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

fix(deps): update all dependencies #526

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@canonical/cookie-policy 3.5.0 -> 3.6.4 age adoption passing confidence dependencies minor
autoprefixer 10.4.19 -> 10.4.20 age adoption passing confidence dependencies patch
black (changelog) ==24.3.0 -> ==24.10.0 age adoption passing confidence minor
cachetools ==5.3.3 -> ==5.5.0 age adoption passing confidence minor
canonicalwebteam.discourse ==5.6.1 -> ==5.7.3 age adoption passing confidence minor
canonicalwebteam.search ==2.1.0 -> ==2.1.1 age adoption passing confidence patch
codecov/codecov-action v3 -> v4 age adoption passing confidence action major
concurrently 8.2.2 -> 9.0.1 age adoption passing confidence dependencies major
flake8 (changelog) ==7.0.0 -> ==7.1.1 age adoption passing confidence minor
node 20 -> 22 age adoption passing confidence stage major
postcss (source) 8.4.38 -> 8.4.47 age adoption passing confidence dependencies patch
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence dependencies minor
sass 1.75.0 -> 1.80.5 age adoption passing confidence dependencies minor
stylelint (source) 16.3.1 -> 16.10.0 age adoption passing confidence dependencies minor
stylelint-config-recommended-scss 14.0.0 -> 14.1.0 age adoption passing confidence dependencies minor
stylelint-prettier 5.0.0 -> 5.0.2 age adoption passing confidence dependencies patch
ubuntu 22.04 -> 24.04 age adoption passing confidence github-runner major
ubuntu jammy -> noble age adoption passing confidence final major
ubuntu jammy -> noble age adoption passing confidence stage major
vanilla-framework (source) 4.14.0 -> 4.18.2 age adoption passing confidence dependencies minor

Release Notes

canonical/cookie-policy (@​canonical/cookie-policy)

v3.6.4: 3.6.4

Compare Source

What's Changed in cookie-policy v3.6.2

🐛 Fixes

Full Changelog: canonical/cookie-policy@3.6.3...v3.6.4

v3.6.3

Compare Source

What's Changed in cookie-policy v3.6.3

🐛 Fixes

Full Changelog: canonical/cookie-policy@3.6.2...v3.6.3

v3.6.2

Compare Source

What's Changed in cookie-policy v3.6.2

🐛 Fixes

Full Changelog: canonical/cookie-policy@3.6.1...v3.6.2

v3.6.1

Compare Source

What's Changed in cookie-policy v3.6.1

🐛 Fixes

Full Changelog: canonical/cookie-policy@3.6.0...v3.6.1

v3.6.0

Compare Source

What's Changed in cookie-policy v3.6.0

🚀 Features

New Contributors

Full Changelog: canonical/cookie-policy@3.5.0...v3.6.0

postcss/autoprefixer (autoprefixer)

v10.4.20

Compare Source

  • Fixed fit-content prefix for Firefox.
psf/black (black)

v24.10.0

Compare Source

Highlights
  • Black is now officially tested with Python 3.13 and provides Python 3.13
    mypyc-compiled wheels. (#​4436) (#​4449)
  • Black will issue an error when used with Python 3.12.5, due to an upstream memory
    safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please
    use Python 3.12.6 or Python 3.12.4 instead. (#​4447)
  • Black no longer supports running with Python 3.8 (#​4452)
Stable style
  • Fix crashes involving comments in parenthesised return types or X | Y style unions.
    (#​4453)
  • Fix skipping Jupyter cells with unknown %% magic (#​4462)
Preview style
  • Fix type annotation spacing between * and more complex type variable tuple (i.e. def fn(*args: *tuple[*Ts, T]) -> None: pass) (#​4440)
Caching
  • Fix bug where the cache was shared between runs with and without --unstable (#​4466)
Packaging
  • Upgrade version of mypyc used to 1.12 beta (#​4450) (#​4449)
  • blackd now requires a newer version of aiohttp. (#​4451)
Output
  • Added Python target version information on parse error (#​4378)
  • Add information about Black version to internal error messages (#​4457)

v24.8.0

Compare Source

Stable style
  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#​4363)
Packaging
  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also
    linked. This improves the PyPI listing for Black. (#​4345)
Parser
  • Fix regression where Black failed to parse a multiline f-string containing another
    multiline string (#​4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string
    (#​4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#​4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#​4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings
    (#​4423)
Performance
  • Improve performance when a large directory is listed in .gitignore (#​4415)
Blackd
  • Fix blackd (and all extras installs) for docker container (#​4357)

v24.4.2

Compare Source

This is a bugfix release to fix two regressions in the new f-string parser introduced in
24.4.1.

Parser
  • Fix regression where certain complex f-strings failed to parse (#​4332)
Performance
  • Fix bad performance on certain complex string literals (#​4331)

v24.4.1

Compare Source

Highlights
  • Add support for the new Python 3.12 f-string syntax introduced by PEP 701 (#​3822)
Stable style
  • Fix crash involving indented dummy functions containing newlines (#​4318)
Parser
  • Add support for type parameter defaults, a new syntactic feature added to Python 3.13
    by PEP 696 (#​4327)
Integrations
  • Github Action now works even when git archive is skipped (#​4313)

v24.4.0

Compare Source

Stable style
  • Fix unwanted crashes caused by AST equivalency check (#​4290)
Preview style
  • if guards in case blocks are now wrapped in parentheses when the line is too long.
    (#​4269)
  • Stop moving multiline strings to a new line unless inside brackets (#​4289)
Integrations
  • Add a new option use_pyproject to the GitHub Action psf/black. This will read the
    Black version from pyproject.toml. (#​4294)
tkem/cachetools (cachetools)

v5.5.0

Compare Source

===================

  • TTLCache.expire() returns iterable of expired (key, value)
    pairs.

  • TLRUCache.expire() returns iterable of expired (key, value)
    pairs.

  • Documentation improvements.

  • Update CI environment.

v5.4.0

Compare Source

===================

  • Add the keys.typedmethodkey decorator.

  • Deprecate MRUCache class.

  • Deprecate @func.mru_cache decorator.

  • Update CI environment.

canonical/canonicalwebteam.discourse (canonicalwebteam.discourse)

v5.7.3: : Read href from masked links in metadata

Compare Source

Changes

chore: Bump version to 5.7.3 (#​198)
Read href instead of string from masked links (#​197)

This release was made possible by the following contributors:

@​britneywwc

v5.7.2

Compare Source

Changes

Add sort by functionality to takeovers 'cooked' content (#​196)

This release was made possible by the following contributors:

@​carkod

v5.7.1

Compare Source

Changes

Add limit and offset to allow pagination for engage pages and takeovers (#​193)

This release was made possible by the following contributors:

@​carkod

codecov/codecov-action (codecov/codecov-action)

v4

Compare Source

open-cli-tools/concurrently (concurrently)

v9.0.1

Compare Source

What's Changed

Full Changelog: open-cli-tools/concurrently@v9.0.0...v9.0.1

v9.0.0

Compare Source

pycqa/flake8 (flake8)

v7.1.1

Compare Source

v7.1.0

Compare Source

nodejs/node (node)

v22.11.0: 2024-10-29, Version 22.11.0 'Jod' (LTS), @​richardlau

Compare Source

Notable Changes

This release marks the transition of Node.js 22.x into Long Term Support (LTS)
with the codename 'Jod'. The 22.x release line now moves into "Active LTS"
and will remain so until October 2025. After that time, it will move into
"Maintenance" until end of life in April 2027.

Other than updating metadata, such as the process.release object, to reflect
that the release is LTS, no further changes from Node.js 22.10.0 are included.

OpenSSL 3.x

Official binaries for Node.js 22.x currently include OpenSSL 3.0.x (more
specifically, the quictls OpenSSL fork).
OpenSSL 3.0.x is the currently designated long term support version that is
scheduled to be supported until 7th September 2026, which is within the expected
lifetime of Node.js 22.x. We are expecting upstream OpenSSL to announce a
successor long term support version prior to that date and since OpenSSL now
follows a semantic versioning-like versioning scheme we expect to be able to
update to the next long term supported version of OpenSSL during the lifetime of
Node.js 22.x.

v22.10.0: 2024-10-16, Version 22.10.0 (Current), @​aduh95

Compare Source

Notable Changes
New "module-sync" exports condition

This release introduces a "module-sync" exports condition that's enabled when
require(esm) is enabled, so packages can supply a synchronous ES module to the
Node.js module loader, no matter if it's being required or imported. This is
similar to the "module" condition that bundlers have been using to support
require(esm) in Node.js, and allows dual-package authors to opt into ESM-first
only on newer versions of Node.js that supports require(esm) to avoid the
dual-package hazard.

{
  "type": "module",
  "exports": {
    "node": {
      // On new version of Node.js, both require() and import get
      // the ESM version
      "module-sync": "./index.js",
      // On older version of Node.js, where "module-sync" and require(esm) are
      // not supported, use the CJS version to avoid dual-package hazard.
      // When package authors think it's time to drop support for older versions of
      // Node.js, they can remove the exports conditions and just use "main": "index.js".
      "default": "./dist/index.cjs"
    },
    // On any other environment, use the ESM version.
    "default": "./index.js"
  }
}

Or if the package is only meant to be run on Node.js and wants to fallback to
CJS on older versions that don't have require(esm):

{
  "type": "module",
  "exports": {
    // On new version of Node.js, both require() and import get the ESM version
    "module-sync": "./index.js",
    // On older version of Node.js, where "module-sync" and require(esm) are
    // not supported, use the CJS version to avoid dual-package hazard.
    // When package authors think it's time to drop support for older versions of
    // Node.js, they can remove the exports conditions and just use "main": "index.js".
    "default": "./dist/index.cjs"
  }
}

For package authors: this only serves as a feature-detection mechanism for
packages that wish to support both CJS and ESM users during the period when some
active Node.js LTS versions support require(esm) while some older ones don't.
When all active Node.js LTS lines support require(esm), packages can simplify
their distributions by bumping the major version, dropping their CJS exports,
and removing the module-sync exports condition (with only main or default
targetting the ESM exports). If the package needs to support both bundlers and
being run unbundled on Node.js during the transition period, use both
module-sync and module and point them to the same ESM file. If the package
already doesn't want to support older versions of Node.js that doesn't support
require(esm), don't use this export condition.

For bundlers/tools: they should avoid implementing this stop-gap condition.
Most existing bundlers implement the de-facto bundler standard
module
exports condition, and that should be enough to support users who want to bundle
ESM from CJS consumers. Users who want both bundlers and Node.js to recognize
the ESM exports can use both module/module-sync conditions during the
transition period, and can drop module-sync+module when they no longer need
to support older versions of Node.js. If tools do want to support this
condition, it's recommended to make the resolution rules in the graph pointed by
this condition match the Node.js native ESM rules to avoid divergence.

We ended up implementing a condition with a different name instead of reusing
"module", because existing code in the ecosystem using the "module"
condition sometimes also expect the module resolution for these ESM files to
work in CJS style, which is supported by bundlers, but the native Node.js loader
has intentionally made ESM resolution different from CJS resolution (e.g.
forbidding import './noext' or import './directory'), so it would be
breaking to implement a "module" condition without implementing the forbidden
ESM resolution rules. For now, this just implements a new condition as
semver-minor so it can be backported to older LTS.

Contributed by Joyee Cheung in #​54648.

node --run is now stable

This CLI flag runs a specified command from a package.json's "scripts" object.

For the following package.json:

{
  "scripts": {
    "test": "node --test-reporter junit --test ./test"
  }
}

You can run node --run test and that would start the test suite.

Contributed by Yagiz Nizipli in #​53763.

Other notable changes
  • [f0b441230a] - (SEMVER-MINOR) crypto: add KeyObject.prototype.toCryptoKey (Filip Skokan) #​55262
  • [349d2ed07b] - (SEMVER-MINOR) crypto: add Date fields for validTo and validFrom (Andrew Moon) #​54159
  • [bebc95ed58] - doc: add abmusse to collaborators (Abdirahim Musse) #​55086
  • [914db60159] - (SEMVER-MINOR) http2: expose nghttp2_option_set_stream_reset_rate_limit as an option (Maël Nison) #​54875
  • [f7c3b03759] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #​54826
  • [32261fc98a] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #​54933
  • [06957ff355] - (SEMVER-MINOR) module: implement flushCompileCache() (Joyee Cheung) #​54971
  • [2dcf70c347] - (SEMVER-MINOR) module: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) #​54971
  • [f9b19d7c44] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #​54971
  • [e95163b170] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #​55241
  • [4050f68e5d] - (SEMVER-MINOR) process: add process.features.typescript (Aviv Keller) #​54295
  • [86f7cb802d] - (SEMVER-MINOR) test_runner: support custom arguments in run() (Aviv Keller) #​55126
  • [b62f2f8259] - (SEMVER-MINOR) test_runner: add 'test:summary' event (Colin Ihrig) #​54851
  • [d7c708aec5] - (SEMVER-MINOR) test_runner: add support for coverage via run() (Chemi Atlow) #​53937
  • [5fda4a1498] - (SEMVER-MINOR) worker: add markAsUncloneable api (Jason Zhang) #​55234
Commits

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@webteam-app
Copy link

Copy link

codecov bot commented May 1, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 58.51%. Comparing base (043a8fb) to head (5df1cec).
Report is 40 commits behind head on main.

Current head 5df1cec differs from pull request most recent head 9c89c83

Please upload reports for the commit 9c89c83 to get more accurate results.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #526   +/-   ##
=======================================
  Coverage   58.51%   58.51%           
=======================================
  Files           6        6           
  Lines         188      188           
=======================================
  Hits          110      110           
  Misses         78       78           
Flag Coverage Δ
python 58.51% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 5df1cec to c9484fa Compare May 2, 2024 15:16
@renovate renovate bot changed the title chore(deps): update all dependencies Update all dependencies May 3, 2024
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 0ccf19e to a116a3f Compare May 11, 2024 01:42
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 1f45a5c to 3fb7db4 Compare May 21, 2024 04:35
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from e3c50c9 to df54078 Compare May 31, 2024 01:15
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 8233bec to 619ed37 Compare June 6, 2024 10:18
@renovate renovate bot changed the title Update all dependencies chore(deps): update all dependencies Jun 11, 2024
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from e985af1 to b9fb56b Compare June 12, 2024 17:08
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Jun 12, 2024
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 81ae95f to 55edd13 Compare June 21, 2024 11:20
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 4562a5a to 94c93ae Compare June 29, 2024 22:27
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 229457b to 86a7bb6 Compare September 14, 2024 19:44
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from 8f1f420 to 865b57c Compare September 20, 2024 22:29
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 0ab23e4 to 70a55bc Compare September 28, 2024 07:26
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 7523000 to 0c4b783 Compare October 11, 2024 17:01
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 74054f8 to 25aee80 Compare October 19, 2024 01:09
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from de66772 to e4c5f1d Compare October 29, 2024 23:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant